+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+
+ * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+ changed the order of the arguments. #80278
+
2002-05-02 Matthias Clasen <maclas@gmx.de>
* gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+
+ * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+ changed the order of the arguments. #80278
+
2002-05-02 Matthias Clasen <maclas@gmx.de>
* gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+
+ * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+ changed the order of the arguments. #80278
+
2002-05-02 Matthias Clasen <maclas@gmx.de>
* gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+
+ * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+ changed the order of the arguments. #80278
+
2002-05-02 Matthias Clasen <maclas@gmx.de>
* gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+
+ * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+ changed the order of the arguments. #80278
+
2002-05-02 Matthias Clasen <maclas@gmx.de>
* gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
+2002-05-03 Erwann Chenede - <erwann.chenede@sun.com>
+
+ * gtk/gtkplug.[hc] (gtk_plug_construct_for_display):
+ changed the order of the arguments. #80278
+
2002-05-02 Matthias Clasen <maclas@gmx.de>
* gdk/gdkscreen.c (gdk_screen_get_monitor_at_window): Fix doc comment.
gtk_plug_construct (GtkPlug *plug,
GdkNativeWindow socket_id)
{
- gtk_plug_construct_for_display (gdk_get_default_display (), plug, socket_id);
+ gtk_plug_construct_for_display (plug, gdk_get_default_display (), socket_id);
}
/**
* gtk_plug_construct_for_display:
+ * @plug: a #GtkPlug.
* @display: the #GdkDisplay associated with @socket_id's
* #GtkSocket.
- * @plug: a #GtkPlug.
* @socket_id: the XID of the socket's window.
*
* Finish the Initialization of @plug for a given #GtkSocket identified by
* This function will generally only be used by classes deriving from #GtkPlug.
**/
void
-gtk_plug_construct_for_display (GdkDisplay *display,
- GtkPlug *plug,
+gtk_plug_construct_for_display (GtkPlug *plug,
+ GdkDisplay *display,
GdkNativeWindow socket_id)
{
if (socket_id)
GtkPlug *plug;
plug = GTK_PLUG (gtk_type_new (GTK_TYPE_PLUG));
- gtk_plug_construct_for_display (display, plug, socket_id);
+ gtk_plug_construct_for_display (plug, display, socket_id);
return GTK_WIDGET (plug);
}
GtkWidget* gtk_plug_new (GdkNativeWindow socket_id);
#endif
-void gtk_plug_construct_for_display (GdkDisplay *display,
- GtkPlug *plug,
+void gtk_plug_construct_for_display (GtkPlug *plug,
+ GdkDisplay *display,
GdkNativeWindow socket_id);
GtkWidget* gtk_plug_new_for_display (GdkDisplay *display,
GdkNativeWindow socket_id);